home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000162_rock_spambust_violin@yahoo.com_Tue Oct 11 12:19:06 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!4.24.21.218.MISMATCH!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!g49g2000cwa.googlegroups.com!not-for-mail
  2. From: "tomviolin" <rock_spambust_violin@yahoo.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Kermit as subsystem (via pipe) vs via pty?
  5. Date: 10 Oct 2005 07:08:44 -0700
  6. Organization: http://groups.google.com
  7. Lines: 28
  8. Message-ID: <1128953324.213841.45430@g49g2000cwa.googlegroups.com>
  9. NNTP-Posting-Host: 68.166.82.137
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset="iso-8859-1"
  12. X-Trace: posting.google.com 1128953329 10129 127.0.0.1 (10 Oct 2005 14:08:49 GMT)
  13. X-Complaints-To: groups-abuse@google.com
  14. NNTP-Posting-Date: Mon, 10 Oct 2005 14:08:49 +0000 (UTC)
  15. User-Agent: G2/0.2
  16. X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7,gzip(gfe),gzip(gfe)
  17. Complaints-To: groups-abuse@google.com
  18. Injection-Info: g49g2000cwa.googlegroups.com; posting-host=68.166.82.137;
  19.    posting-account=ornCOQwAAAAyCG4a7NOAj_SMr54FiqNu
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15405
  21.  
  22. The page "Kermit File Transfer and Management as an SSH Subsystem" at
  23.  
  24.   http://www.columbia.edu/kermit/skermit.html
  25.  
  26. recommends doing Kermit over SSH by setting up Kermit as an SSH
  27. subsystem on the host and using SET HOST /PIPE to connect to the Kermit
  28. SSH subsystem.
  29.  
  30. However, my host (an embedded device) only has the dropbear SSH daemon,
  31. and cannot be configured to support Kermit as a subsystem.
  32.  
  33. However, I have found that using the following works just fine (from
  34. "2.7. Using C-Kermit with External Communication Programs" on the page
  35. http://www.columbia.edu/kermit/ckermit70.html )
  36.  
  37.    set host /pty ssh -e none user@host
  38.  
  39. followed by scripting to take care of logging into the host and
  40. invoking Kermit as a server.
  41.  
  42. Besides the work of creating the extra scripting, is there any serious
  43. drawbacks to this approach, versus the subsystem setup?  It seems solid
  44. to me, and frankly I really don't want to bother with getting OpenSSH
  45. working on my device just so I can run Kermit as a SSH subsystem, in
  46. light of this approach which seems to work just as well.
  47.  
  48. Any comments or suggestions are appreciated!
  49.